-
Notifications
You must be signed in to change notification settings - Fork 15
fix: Add missing tagged_builds parameter to Actor update method #596
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #596 +/- ##
=======================================
Coverage 75.92% 75.92%
=======================================
Files 42 42
Lines 2471 2471
=======================================
Hits 1876 1876
Misses 595 595
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Add support for the missing `tagged_builds` parameter in the Actor update method, allowing users to create, update, or remove build tags. The parameter accepts a dictionary mapping tag names to either: - A dict with 'build_id' key to assign/reassign a tag - None to remove a tag Related JS client issue: apify/apify-client-js#829 Closes #585 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
3cc54db to
7ca0d23
Compare
l2ysho
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Resolved conflict in actor.py by properly placing the tagged_builds parameter in the actor_dict structure. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Add support for the missing
tagged_buildsparameter in the Actor update method, allowing users to create, update, or remove build tags.The parameter accepts a dictionary mapping tag names to either:
Example usage:
Changes:
tagged_buildsparameter toget_actor_representation()helper functiontagged_buildsparameter toActorClient.update()(sync version)tagged_buildsparameter toActorClientAsync.update()(async version)Related:
Closes #585